home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / ms-0.07 / xms / Mama.h < prev    next >
C/C++ Source or Header  |  1995-06-26  |  894b  |  37 lines

  1. /* Mama.h - public header for MandelSpawn master widget */
  2. /* Copyright (C) 1990-1993 Andreas Gustafsson */
  3.  
  4. #ifndef _Mama_h
  5. #define _Mama_h
  6.  
  7. #define XtNSpectrum     "spectrum"
  8. #define XtNColours    "colours"
  9. #define XtNHues        "hues"
  10. #define XtNBw        "bw"
  11. #define XtNWrap        "wrap"
  12. #define XtNDebug    "debug"
  13. #define XtNAnimate    "animate"
  14. #define XtNAnimationSpeed "animation_speed"
  15.  
  16. typedef struct _MamaRec *MamaWidget;
  17. typedef struct _MamaClassRec *MamaWidgetClass;
  18.  
  19. extern WidgetClass mamaWidgetClass;
  20.  
  21. /* Methods */
  22. void Shutdown(); /* shut down the whole operation */
  23. unsigned MaxIterations();
  24. void PopupAnother();
  25. void SlaveStatistics();
  26. unsigned MamaWidth();
  27. unsigned MamaHeight();
  28. unsigned long *MamaPixels();
  29. unsigned long MamaWhite();
  30. unsigned long MamaBlack();
  31. struct wf_state *MamaWorkforce();
  32. XVisualInfo *MamaVisualInfo();
  33. Colormap MamaColormap();
  34. void AnimationToggle();
  35.  
  36. #endif /* _Mama_h */
  37.